home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / flight / udpbrdcst.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  47 lines

  1. /*
  2.  * Copyright 1984-1991, 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17.  
  18.  
  19. #ifndef UDPBRDCSTDEF
  20. #define UDPBRDCSTDEF
  21.  
  22. #include <sys/types.h>
  23. #include <sys/socket.h>
  24. #include <netinet/in.h>
  25. #include <netdb.h>
  26. #include <sys/termio.h>
  27. #include <errno.h>
  28.  
  29. #define    IGNOREOWNMSG 1    /* Flag for recvbroadcast() to ignore messages */
  30.             /* which are received on originating host */
  31. #define ACCEPTOWNMSG 0    /* Flag for recvbroadcast() to accept messages */
  32.             /* which are received on originating host */
  33.  
  34. extern int getbroadcast (/* char *service, struct sockaddr_in *addr */);
  35.  
  36. extern int sendbroadcast(/* int socketfiledes, char *message, 
  37.                 int messagelength, struct sockaddr_in *addr */);
  38.  
  39. extern int recvbroadcast(/* int socketfiledes, char *messagebuf,
  40.                 int messagebuflen, int ignoreownflag */);
  41.  
  42. extern char multicast;        /* if TRUE use multicast instead of broadcast */
  43. extern char mcast_ttl;        /* packet time-to-live (must be type "char") */
  44. extern char *mcast_ifaddr;    /* name of interface to send to/recv from */
  45.  
  46. #endif /* UDPBRDCSTDEF */
  47.